/* =========================================
   1. RESET ET BASES
   ========================================= */
:root {
    --primary-color: #e63946; /* Rouge "GTI" */
    --secondary-color: #1d3557; /* Bleu nuit "Pro" */
    --dark-bg: #111111;
    --light-bg: #f8f9fa;
    --text-color: #333333;
    --white: #ffffff;
    --success-color: #2ecc71; /* Vert "Succès" */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--light-bg);
    font-size: 16px;
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    overflow: visible; /* Important pour les badges */
}

/* =========================================
   2. LAYOUT GLOBAL (HEADER, NAV, FOOTER)
   ========================================= */

/* --- HEADER --- */
header {
    background: var(--dark-bg);
    color: var(--white);
    padding: 0.8rem 0;
    border-bottom: 4px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

.branding-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo-img {
    height: 80px;
    width: auto;
    margin-right: 20px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.branding-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.logo-title {
    margin: 0;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
    font-weight: 800;
}

.logo-slogan {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
    font-weight: 300;
}

/* --- MENU DE NAVIGATION --- */
.navbar {
    display: flex;
    justify-content: center;
    padding-top: 15px;
    border-top: 1px solid #333;
    margin-top: 15px;
}

.navbar a {
    color: #ccc;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.navbar a:hover,
.navbar a.active-link {
    color: var(--primary-color);
    font-weight: bold;
}

/* --- BOUTONS --- */
.btn-main {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
    transition: all 0.3s ease;
}

.btn-main:hover {
    background: #c92a37;
    transform: translateY(-3px);
}

/* --- FOOTER --- */
footer {
    background: var(--dark-bg);
    color: #888;
    text-align: center;
    padding: 30px 0;
    font-size: 0.9rem;
    border-top: 1px solid #333;
}

/* =========================================
   3. SECTIONS COMMUNES & PAGES
   ========================================= */

/* --- Styles Généraux de Section --- */
section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--secondary-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    margin: 15px auto 0;
}

.page-header {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
    position: relative;
}

/* --- Section HERO (Accueil) --- */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://cdn.bmwblog.com/wp-content/uploads/2016/10/E30-M3-Photo-gallery5.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: var(--white);
    min-height: 80vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    text-transform: uppercase;
    max-width: 900px;
    margin: 0 auto 20px auto;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 30px auto;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* --- Section INVESTIR (Accueil) --- */
.invest-section {
    background: #fff;
    padding: 80px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.invest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.invest-card {
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 30px;
    border-left: 5px solid var(--secondary-color); 
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.invest-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    border-left-color: var(--primary-color);
}

.invest-card h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.invest-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

/* --- Section SERVICES (Accueil) --- */
.services {
    background: var(--light-bg);
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border-top: 5px solid var(--success-color); 
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(46, 204, 113, 0.2); 
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    line-height: 1;
    background: linear-gradient(135deg, #f0fff8, #e6fcf1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 2px solid rgba(46, 204, 113, 0.3);
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.import-note {
    background: linear-gradient(135deg, var(--secondary-color), #2c3e50);
    color: #eee;
    padding: 30px;
    border-radius: 12px;
    margin-top: 50px;
    text-align: center;
    border: none;
    box-shadow: 0 10px 30px rgba(29, 53, 87, 0.3);
    font-size: 1.1rem;
    line-height: 1.7;
}

.import-note strong {
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 5px;
}

/* --- Section A PROPOS (Accueil) --- */
.about {
    background: var(--secondary-color);
    color: var(--white);
    text-align: center;
}

.about .section-title {
    color: var(--white);
}

.about-text-container {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-highlight {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid var(--primary-color);
}

.about-text-container p {
    color: #eee;
    font-weight: 300;
}

.about-text-container strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* --- Section CONTACT (Accueil) --- */
.contact {
    padding: 80px 0;
    background: var(--white);
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

.contact .section-title {
    color: var(--secondary-color);
}

.contact-box {
    text-align: center;
    background: #fdfdfd;
    max-width: 850px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}

p.style-for-process {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 40px;
    text-shadow: none;
}

.contact-steps {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-steps li {
    background: var(--light-bg);
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 25px 30px;
    width: calc(33% - 20px);
    min-width: 280px;
    text-align: left;
    font-size: 1rem;
    color: #555;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-steps li:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.contact-steps li strong {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    display: block;
    position: relative;
    padding-left: 35px;
}

.contact-steps li strong::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.9rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-steps li:nth-child(1) strong::before { content: '1'; }
.contact-steps li:nth-child(2) strong::before { content: '2'; }
.contact-steps li:nth-child(3) strong::before { content: '3'; }

.contact-box em {
    font-size: 1rem;
    color: #777;
    margin-top: 30px;
    display: block;
}

.contact-box .btn-main {
    margin-top: 40px;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    background: linear-gradient(45deg, var(--primary-color), #ff5f6d);
    box-shadow: 0 12px 30px rgba(230, 57, 70, 0.4);
    transition: all 0.3s ease;
}

.contact-box .btn-main:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 18px 45px rgba(230, 57, 70, 0.6);
}

/* --- Section TARIFS (Tarif.html) --- */
.pricing-section {
    background: linear-gradient(to bottom, var(--light-bg) 0%, #ffffff 100%);
    padding: 80px 0;
}

.pricing-card {
    background: #fff;
    max-width: 480px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 5px 15px rgba(0,0,0,0.05);
    transform: translateY(0);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(230, 57, 70, 0.2);
}

.pricing-header.launch-offer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    color: #fff;
    padding: 50px 30px 40px;
    text-align: center;
    position: relative;
    border-radius: 20px 20px 0 0;
}

.launch-badge {
    background: linear-gradient(45deg, #e63946, #ff5f6d);
    color: #fff;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1px;
    padding: 10px 25px;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(230, 57, 70, 0.5);
    font-size: 0.95rem;
    white-space: nowrap;
    z-index: 10;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
    100% { transform: translateX(-50%) scale(1); }
}

.pricing-header h3 {
    margin: 25px 0 25px;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
    font-weight: 600;
}

.price-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-tag .from {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 5px;
}

.price-tag .from span {
    color: #ff6b6b;
    font-weight: bold;
    text-decoration: line-through;
    text-decoration-color: #e63946;
    text-decoration-thickness: 3px;
    padding: 0 5px;
}

.launch-price {
    font-size: 5rem !important;
    line-height: 1;
    font-weight: 800;
    background: linear-gradient(45deg, #fff, #e6e6e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #fff;
    text-shadow: 0 5px 20px rgba(0,0,0,0.3);
    margin: 10px 0;
    display: block;
}

.price-tag .tax {
    font-size: 0.9rem;
    opacity: 0.6;
    letter-spacing: 1px;
}

.pricing-body {
    padding: 40px 30px;
    text-align: center;
    background: #fff;
    border-radius: 0 0 20px 20px;
}

.pricing-features {
    text-align: left;
    margin: 0 auto 40px;
    max-width: 380px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 1.1rem;
    color: #555;
}

.pricing-reassurance {
    text-align: center;
    max-width: 600px;
    margin: 50px auto 0;
    padding: 20px 30px;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    font-size: 1.05rem;
    color: #666;
    border: 1px solid #eee;
}

/* =========================================
   4. FORMULAIRES (Devis & Avis)
   ========================================= */

/* --- Conteneur principal du formulaire --- */
.form-container-pro {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    max-width: 900px;
    margin: 40px auto 60px; /* Marge positive */
    position: relative;
    z-index: 10;
    border: 1px solid #f0f0f0;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}
.form-section:last-child { border-bottom: none; }

.form-section-title {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}
.full-width { grid-column: 1 / -1; }

.form-group { display: flex; flex-direction: column; }

.form-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 8px;
}

.form-input, .form-select, .form-textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #fafafa;
    transition: all 0.3s ease;
    width: 100%;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(230, 57, 70, 0.1);
}

.form-textarea { resize: vertical; min-height: 100px; }
.form-help { font-size: 0.8rem; color: #888; margin-top: 6px; font-style: italic; }

.input-icon-wrapper { position: relative; }
.input-icon-wrapper .form-input { padding-right: 35px; }
.input-icon {
    position: absolute; right: 15px; top: 50%;
    transform: translateY(-50%); color: #999; font-weight: bold;
}

/* --- Note d'info (sur le devis) --- */
.form-note {
    background: #f0f8ff;
    border: 1px solid #cce4ff;
    border-left: 4px solid var(--secondary-color);
    color: #333;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    line-height: 1.6;
}
.form-note strong {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* --- Upload de fichier (sur avis.html) --- */
.form-input-file {
    font-size: 1rem;
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fafafa;
    width: 100%;
    cursor: pointer;
}
.form-input-file::file-selector-button {
    margin-right: 15px;
    border: none;
    background: var(--secondary-color);
    padding: 8px 12px;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}
.form-input-file::file-selector-button:hover {
    background-color: var(--primary-color);
}

/* --- Bouton d'envoi --- */
.form-submit-area { text-align: center; margin-top: 40px; }
.btn-large { padding: 15px 50px; font-size: 1.2rem; width: 100%; max-width: 400px; }
.security-note {
    margin-top: 20px; font-size: 0.9rem; color: #666;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}

/* =========================================
   5. PAGE AVIS CLIENTS
   ========================================= */

/* --- Bouton "Déposer avis" --- */
.cta-box {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 50px;
}
.cta-box p {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

/* --- Grille des avis --- */
.reviews-section {
    background: var(--light-bg);
    padding: 60px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.review-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.12);
}

/* --- Contenu de la carte avis --- */
.review-content {
    padding: 30px;
}
.review-client-info h3 {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}
.client-name {
    font-size: 1rem;
    color: #555;
    font-style: italic;
}
.verified-badge {
    display: inline-block;
    margin-left: 10px;
    font-size: 0.85rem;
    font-weight: bold;
    color: var(--success-color, #2ecc71);
    background: #f0fff8;
    padding: 3px 8px;
    border-radius: 5px;
}

.review-stars-overall {
    margin: 15px 0;
    font-size: 1.2rem;
    font-weight: 600;
}
.stars {
    color: #ffc107;
    font-size: 1.4rem;
    margin-left: 10px;
}

.review-comment {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #333;
    padding: 20px;
    background: #f9f9f9;
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
    margin: 20px 0;
    font-style: italic;
}

.review-criteria {
    margin-top: 25px;
    border-top: 1px dashed #ddd;
    padding-top: 25px;
}
.criteria-title {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 15px;
}
.criteria-list { list-style: none; padding: 0; }
.criteria-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 1rem;
    color: #444;
}
.criteria-stars { color: #ffc107; font-weight: bold; font-size: 1.1rem; }

/* --- Section de dépôt d'avis --- */
.depot-section {
    background: var(--light-bg);
    padding: 60px 0;
    border-top: 1px solid #eee;
}

/* Annule la superposition pour le formulaire en bas de page */
.depot-section .form-container-pro {
    margin: 0 auto 60px;
    max-width: 900px;
}

/* =========================================
   6. PLUGINS (SWIPER, CALENDLY)
   ========================================= */

/* --- Carrousel (Swiper.js) --- */
.review-swiper {
    width: 100%;
    height: 350px;
    background-color: #eee;
    border-radius: 15px 15px 0 0;
}

.review-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.review-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-swiper .swiper-button-next,
.review-swiper .swiper-button-prev {
    color: var(--primary-color) !important;
    transition: opacity 0.3s ease;
    background-color: rgba(255, 255, 255, 0.8);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.review-swiper .swiper-button-next::after,
.review-swiper .swiper-button-prev::after {
    font-size: 0.9rem !important;
    font-weight: 900;
}

.review-swiper .swiper-pagination-bullet {
    background: rgba(0, 0, 0, 0.4);
    opacity: 1;
}

.review-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
    transform: scale(1.2);
}

/* --- Page Remerciement & Calendly --- */
.page-header.success-header {
    background: var(--success-color, #2ecc71); 
}
.page-header.success-header h1 {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.calendly-section {
    background: var(--white);
    padding: 60px 0;
}

.calendly-intro-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
}
.calendly-intro-text p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.calendly-inline-widget {
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* =========================================
   7. RESPONSIVE (MEDIA QUERIES)
   ========================================= */

@media (max-width: 768px) {
    
    /* --- Header --- */
    .branding-link {
        justify-content: center;
    }
    .logo-img {
        height: 50px;
        margin-right: 15px;
    }
    .logo-title {
        font-size: 1.2rem;
    }
    .logo-slogan {
        font-size: 0.8rem;
    }

    /* --- Navigation --- */
    .navbar a {
        margin: 0 8px;
        font-size: 0.8rem;
    }
    
    /* --- Hero --- */
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    
    /* --- Sections Générales --- */
    .section-title {
        font-size: 1.8rem;
    }
    
    /* --- Section Contact --- */
    .contact-steps {
        flex-direction: column;
        align-items: center;
    }
    .contact-steps li {
        width: 90%;
        max-width: 400px;
    }
    .contact-box {
        padding: 30px;
    }
    
    /* --- Page Tarifs --- */
    .launch-price {
        font-size: 3.5rem !important;
    }
    
    /* --- Formulaires --- */
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .form-container-pro {
        padding: 25px;
        margin-top: 30px; /* Marge positive sur mobile */
    }
    
    /* --- Page Avis & Carrousel --- */
    .review-swiper {
        height: 280px;
    }
    .review-swiper .swiper-button-next,
    .review-swiper .swiper-button-prev {
        /* On les garde visibles mais petits */
        width: 28px;
        height: 28px;
    }
    .review-swiper .swiper-button-next::after,
    .review-swiper .swiper-button-prev::after {
        font-size: 0.8rem !important;
    }
    .review-swiper .swiper-pagination {
        position: relative;
        bottom: -5px;
        padding-top: 10px;
    }
    .review-card {
        padding-bottom: 30px; /* Espace pour la pagination */
    }
	
/* =========================================
   STYLE PAGE REMERCIEMENT AVIS
   ========================================= */

/* (Le style .page-header.success-header est déjà dans votre CSS) */

.success-message-section {
    background: var(--white);
    padding: 60px 0;
}

.success-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: #fdfdfd;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.success-box p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}
}
